home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 April / PCWorld_2008-04_cd.bin / domacnost a kancelar / pctranslator / TRNDEMO.exe / WTRAN32c.CHM / fhhtmlpopups.js < prev    next >
Text File  |  2007-03-21  |  415b  |  14 lines

  1. // Entire contents copyright (C) 1999-2002, Work Write, Inc.
  2. // and KeyWorks Software. All rights reserved.
  3. // Contact: Cheryl Lockett Zubak at cheri@workwrite.com
  4.  
  5. var KeyPopup;   // KeyHelp.KeyPopup  ActiveX object
  6.  
  7. function DisplayHtmlPopup(URL,left,top,width)
  8. {
  9.   if (!KeyPopup)
  10.     KeyPopup = new ActiveXObject("KeyHelp.KeyPopup");
  11.   KeyPopup.Width = width;
  12.   KeyPopup.DisplayURL(URL,left,top);
  13. }
  14.